home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11.lha / libX11 / xtmui.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-22  |  1.3 KB  |  41 lines

  1. /* Copyright (c) 1996 by Terje Pedersen.  All Rights Reserved   */
  2. /*                                                              */
  3. /* By using this code you will agree to these terms:            */
  4. /*                                                              */
  5. /* 1. You may not use this code for profit in any way or form   */
  6. /*    unless an agreement with the author has been reached.     */
  7. /*                                                              */
  8. /* 2. The author is not responsible for any damages caused by   */
  9. /*    the use of this code.                                     */
  10. /*                                                              */
  11. /* 3. All modifications are to be released to the public.       */
  12. /*                                                              */
  13. /* Thats it! Have fun!                                          */
  14. /* TP                                                           */
  15. /*                                                              */
  16.  
  17. /***
  18.    NAME
  19.      xtmui
  20.    PURPOSE
  21.      
  22.    NOTES
  23.      
  24.    HISTORY
  25.      terjepe - Jul 16, 1996: Created.
  26. ***/
  27.  
  28. #ifndef __XTMUI
  29. #define __XTMUI
  30.  
  31. typedef struct ObjApp {
  32.   APTR App;
  33.   APTR Root;
  34.   APTR Canvas;
  35. } ObjApp_t;
  36.  
  37. void X11mui_init(void);
  38. void X11mui_cleanup(void);
  39.  
  40. #endif /* __XTMUI */
  41.